home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / WINDOWS / LZAPI.ZIP / LZDELPHI.ZIP / LZDELPHI.DPR next >
Encoding:
Text File  |  1995-01-20  |  145 b   |  11 lines

  1. program Lzdelphi;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'MAIN.PAS' {Form1};
  6.  
  7. begin
  8.   Application.CreateForm(TForm1, Form1);
  9.   Application.Run;
  10. end.
  11.